
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0b3b57;
  color: #e9f3ff;
}

.personas-wrapper {
  max-width: 1100px;
  margin: 60px auto;
  padding: 24px;
}

.personas-wrapper h1 {
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #f5fbff;
}

.personas-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(6, 32, 49, 0.96);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

/* Cabecera */
.personas-table thead {
  background: linear-gradient(135deg, #1275b9, #0fd1c3);
}

.personas-table thead th {
  text-align: left;
  padding: 14px 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f5fbff;
}

/* Cuerpo */
.personas-table tbody tr {
  transition: background 0.25s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.personas-table tbody tr:nth-child(even) {
  background: rgba(10, 46, 68, 0.9);
}

.personas-table tbody tr:nth-child(odd) {
  background: rgba(7, 37, 56, 0.9);
}

.personas-table tbody td {
  padding: 12px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hover de la fila */
.personas-table tbody tr:hover {
  background: rgba(26, 108, 160, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

/* Columna de acciones */
.personas-table td.acciones {
  white-space: nowrap;
  text-align: right;
}

/* Botones de icono */
.btn-icon {
  border: none;
  outline: none;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  font-size: 0.9rem;
  color: #e9f3ff;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.btn-icon.edit {
  color: #4fe3ff;
}

.btn-icon.delete {
  color: #ff6b81;
}

.btn-icon:hover {
  background: rgba(0, 0, 0, 0.15);
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.btn-icon.edit:hover {
  color: #b7f6ff;
}

.btn-icon.delete:hover {
  color: #ffd1d9;
}

/* Botón Agregar nueva persona */
.acciones-final {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

.btn-add-persona {
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #11c5ff, #30ffb1);
  color: #031520;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-add-persona span {
  position: relative;
  z-index: 2;
}

/* Efecto “wave” al hover */
.btn-add-persona::before {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, 0.28);
  transform: skewX(-20deg) translateX(-120%);
  transition: transform 0.45s ease;
}

.btn-add-persona:hover::before {
  transform: skewX(-20deg) translateX(260%);
}

.btn-add-persona:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.7);
}

/* Pequeño efecto al hacer clic */
.btn-add-persona:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

/* Botón Exportar datos */
.btn-exportar {
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  margin-left: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb347, #ff5f6d); /* naranja-rosado */
  color: #261102;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.82rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-exportar span {
  position: relative;
  z-index: 2;
}

/* Brillo deslizante al hover (similar al otro pero independiente) */
.btn-exportar::before {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, 0.26);
  transform: skewX(-20deg) translateX(-120%);
  transition: transform 0.45s ease;
}

.btn-exportar:hover::before {
  transform: skewX(-20deg) translateX(260%);
}

.btn-exportar:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.7);
}

.btn-exportar:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}



h3{
  color: #031520;
}

.login-container {
  margin-top: 100px;
  max-width: 350px;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px #aaa;
  animation: fadeInDown 1s ease;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.input-group-addon {
  background: #eee;
  border-radius: 0;
}

h4{
  color: #031520;
}

label{
  color: #031520;
}